home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 1.5 KB | 49 lines | [TEXT/GEOL] |
- Item forwarded by SCHMUCKER1 to GOUGH2
-
- Item 6514029 18-Feb-88 08:53
-
- From: D0830 Data Translation, Dev, R Burger
-
- To: D0317 Matrix Instr, Reg Dev, D Miller
-
- cc: MACAPP$ MacApp Interest List
-
- Sub: Response to Using 68881
-
- Hi Dave! (Or is this Terran calling?)
-
- You have found one of the minor inadequacies of the MacApp make files: you
- can't specify new compiler options without overriding the default compilation
- rules as defined in "{MPW}MacApp:MacApp Make Files:MacApp.make1". The most
- flexible way around the problem is to patch MacApp.make1 so that it accepts new
- options from your application's makefile.
-
- Here are the modifications for MacApp.make1:
-
- .a.o ƒ .a
- echo Assembling {default}.a
- Asm {depDir}{default}.a {ADebugging} -d &NeedsROM128K={AsmNeedsROM128K}
- {AOptions} -o {targDir}{default}.a.o
-
- .p.o ƒ .p
- echo Compiling {default}.p
- Pascal {depDir}{default}.p {Debugging} {PascalOptions} ∂
- {POptions} -d qNeedsROM128K={NeedsROM128K} -d qMacApp=TRUE ∂
- -i "{SrcMacApp}" -k "{LoadMacApp}" -o {targDir}{default}.p.o
-
-
- Now, at the top of your applications makefile, you can set those new variables
- to whatever options you like (if any):
-
- AOptions =
- POptions = -mc68020 -mc68881
-
- Hope this helps!
-
- Russ Brenner
- Data Translation
-
- P.S. You might want to send a message back to MACAPP$ asking to be put on this
- mailing list.
-
-